home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmDogYrs
- Caption = "See How Old You Are In Dog Years"
- ClientHeight = 3645
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5295
- LinkTopic = "Form1"
- ScaleHeight = 3645
- ScaleWidth = 5295
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton cmdDogYrs
- Caption = "Find Out Age"
- Height = 495
- Left = 2040
- TabIndex = 2
- Top = 1320
- Width = 1215
- End
- Begin VB.TextBox txtAge
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 2880
- TabIndex = 1
- Top = 360
- Width = 975
- End
- Begin VB.Label lblAge
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 0
- TabIndex = 4
- Top = 2520
- Width = 5175
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "In dog years you are only:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 0
- TabIndex = 3
- Top = 1920
- Width = 3375
- End
- Begin VB.Label lblGetAge
- Alignment = 1 'Right Justify
- Caption = "How old are you?"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 240
- TabIndex = 0
- Top = 360
- Width = 2415
- End
- Attribute VB_Name = "frmDogYrs"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDogYrs_Click()
- ' Divide age by seven
- lblAge.Caption = txtAge.Text / 7
- End Sub
-